-
1 unsigned integer type
Вычислительная техника: тип целочисленных данных без знака -
2 unsigned integer type
English-Russian information technology > unsigned integer type
-
3 integer type
= integerв программировании - встроенный простой тип данных. Может быть целое (т. е. число без дробной части) со знаком (signed integer), без знака (unsigned integer), коротким (short integer) или длинным (long integer, longint)Англо-русский толковый словарь терминов и сокращений по ВТ, Интернету и программированию. > integer type
-
4 unsigned integer
English-Russian dictionary of Information technology > unsigned integer
-
5 unsigned integer
"A data type that can only hold a whole number with a value greater than, or equal to, zero. In this implementation, the maximum value that an unsigned integer can hold is 0xFFFFFFFF (4,294,967,295)." -
6 integer type
1) Общая лексика: целочисленный тип (данных) (в программировании - встроенный простой тип данных. Может быть целое (т. е. число без дробной части) со знаком (signed integer), без знака (unsigned integer), коротким (short integer) или длинным (long integ)2) Техника: целочисленный тип (данных), целый тип -
7 unsigned integer
целое [число] без знака, беззнаковое целоетип данных, значениями которого может быть ноль и положительные целые числаАнгло-русский толковый словарь терминов и сокращений по ВТ, Интернету и программированию. > unsigned integer
-
8 integer
1) целое число (целые числа), целоедиапазон чисел, которые могут быть представлены в машине и обрабатываются как целые, зависит от её архитектуры и системы команд. Обычно обеспечивается их представление в виде 1-, 2-и 4-байтовых чисел со знаком (signed integer) и без знака (unsigned integer). Например, operations on integers - операции над целыми числами; integer operand - целочисленный операнд, операнд типа integerсм. тж. floating point, integer data, integer operation, integer variable, non-negative integer, short integer, word2) целый, целочисленный3) см. integer typeАнгло-русский толковый словарь терминов и сокращений по ВТ, Интернету и программированию. > integer
-
9 signed integer
целое [число] со знакомв ЯВУ - простой тип данных, соответствующий машинному представлению положительных (positive integer) и отрицательных (negative integer) целых чисел. Под знак выделяется один бит, обычно перед старшим разрядом числаАнгло-русский толковый словарь терминов и сокращений по ВТ, Интернету и программированию. > signed integer
-
10 dword
A data type consisting of a 32-bit unsigned integer. -
11 DWORD
A data type consisting of a 32-bit unsigned integer.
См. также в других словарях:
Type system — Type systems Type safety Inferred vs. Manifest Dynamic vs. Static Strong vs. Weak Nominal vs. Structural Dependent typing Duck typing Latent typing Linear typing Uniqueness typing … Wikipedia
Integer overflow — In computer programming, an integer overflow occurs when an arithmetic operation attempts to create a numeric value that is larger than can be represented within the available storage space. For instance, adding 1 to the largest value that can be … Wikipedia
Type conversion — This article is about the computer science concept. For the aviation licensing process, see Type conversion (aviation). In computer science, type conversion, typecasting, and coercion refers to different ways of, implicitly or explicitly,… … Wikipedia
Integer (computer science) — In computer science, an integer is a datum of integral data type, a data type which represents some finite subset of the mathematical integers. Integral data types may be of different sizes and may or may not be allowed to contain negative values … Wikipedia
Type punning — FORCETOC In computer science, type punning is a common term for any programming technique that subverts or circumvents the type system of a programming language in order to achieve an effect that would be difficult or impossible to achieve within … Wikipedia
Data type — For other uses, see Data type (disambiguation). In computer programming, a data type is a classification identifying one of various types of data, such as floating point, integer, or Boolean, that determines the possible values for that type; the … Wikipedia
Composite data type — In computer science, a composite data type is any data type which can be constructed in a program using its programming language s primitive data types and other composite types. The act of constructing a composite type is known as composition.… … Wikipedia
Primitive type — In computer science, primitive types as distinct from composite types are data types provided by a programming language as basic building blocks. Primitive types are also known as built in types or basic types .Depending on the language and its… … Wikipedia
Composite type — In computer science, composite types are datatypes which can be constructed in a programming language out of that language s primitive types and other composite types. The act of constructing a composite type is known as composition. C/C++… … Wikipedia
Comparison of C Sharp and Java — The correct title of this article is Comparison of C# and Java. The substitution or omission of the # sign is because of technical restrictions. Programming language comparisons General comparison Basic syntax Basic instructions … Wikipedia
Arithmetic shift — In computer programming, an arithmetic shift is a shift operator, sometimes known as a signed shift (though it is not restricted to signed operands). For binary numbers it is a bitwise operation that shifts all of the bits of its operand; every… … Wikipedia